diff options
| author | real-zephex <[email protected]> | 2024-04-12 14:06:09 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-04-12 14:06:09 +0530 |
| commit | 8384b873a00b54190456c1274ec0b5654265b13f (patch) | |
| tree | 7ba378b9d7723b6c655273f456ca6e67c710df69 /src/app/manga/[title] | |
| parent | minor fixes (diff) | |
| download | dramalama-8384b873a00b54190456c1274ec0b5654265b13f.tar.xz dramalama-8384b873a00b54190456c1274ec0b5654265b13f.zip | |
minor fixes
Diffstat (limited to 'src/app/manga/[title]')
| -rw-r--r-- | src/app/manga/[title]/[id]/page.jsx | 2 | ||||
| -rw-r--r-- | src/app/manga/[title]/page.jsx | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index 6ab436e..bbf1647 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -6,6 +6,8 @@ import { FaStar } from "react-icons/fa"; import CurrentReading from "./[read]/currentReading"; import PreFetchChaterLinks from "../../cacher"; +// This page displays the information regarding the manga or manhwa which the user selected on the previous page. + export default async function MangaInfo({ params }) { const id = params.id; const data = await getMangaInfo(id); diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index e4cc659..0602ad9 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -2,6 +2,8 @@ import styles from "./title.module.css"; import Image from "next/image"; import Link from "next/link"; +// This page displays all the available mangas or manhwas when the user searches for one/ + export default async function MangaInfo({ params }) { const title = params.title; const data = await GetSearchedAnime(title); |